home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htsthread.c < prev    next >
C/C++ Source or Header  |  2001-04-28  |  3KB  |  98 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Threads                                                */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #include "htsglobal.h"
  39. #include "htsthread.h"
  40.  
  41. // Threads - emulate _beginthread under Linux/Unix using pthread_XX
  42. // Some changes will have to be done, see PTHREAD_RETURN,PTHREAD_TYPE
  43. #if USE_PTHREAD
  44. #include <pthread.h>    /* _beginthread, _endthread */
  45.  
  46. unsigned long _beginthread( void* ( *start_address )( void * ), unsigned stack_size, void *arglist )
  47. {
  48.   pthread_t th;
  49.   int retcode;
  50.   /* create a thread */
  51.   retcode = pthread_create(&th, NULL, start_address, arglist);
  52.   if (retcode != 0)     /* error */
  53.     return -1;
  54.   /* detach the thread from the main process so that is can be independent */
  55.   pthread_detach(th);
  56.   return 0;
  57. }
  58. #endif
  59.  
  60. #if USE_BEGINTHREAD
  61. /* 
  62.   Simple lock function
  63.  
  64.   Return value: always 0
  65.   Parameter:
  66.   1 wait for lock (mutex) available and lock it
  67.   0 unlock the mutex
  68.   [-1 check if locked (always return 0 with mutex)]
  69.   -999 initialize
  70. */
  71. int htsSetLock(PTHREAD_LOCK_TYPE* hMutex,int lock) {
  72. #if HTS_WIN
  73.   /* lock */
  74.   if (lock==1)
  75.     WaitForSingleObject(*hMutex,INFINITE);
  76.   /* unlock */
  77.   else if (lock==0)
  78.     ReleaseMutex(*hMutex);
  79.   /* create */
  80.   else if (lock==-999)
  81.     *hMutex=CreateMutex(NULL,FALSE,NULL);
  82. #else
  83.   /* lock */
  84.   if (lock==1)
  85.     pthread_mutex_lock(hMutex);
  86.   /* unlock */
  87.   else if (lock==0)
  88.     pthread_mutex_unlock(hMutex);
  89.   /* create */
  90.   else if (lock==-999)
  91.     pthread_mutex_init(hMutex,0);
  92. #endif
  93.   return 0;
  94. }
  95.  
  96. #endif
  97.  
  98.